Finds an index in the collection by its key selector.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public IIndexScanner<T> Find(
	LambdaExpression keySelector
)
Visual Basic
Public Function Find ( _
	keySelector As LambdaExpression _
) As IIndexScanner(Of T)

Parameters

keySelector
Type: System.Linq.Expressions..::..LambdaExpression
Key selector expression of an index, see KeySelector.

Return Value

An index with the given key selector, if it is found; otherwise, null.

See Also